home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / stringex / ex10.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  265 b   |  17 lines

  1. Program Example10;
  2.  
  3. Uses strings;
  4.  
  5. { Program to demonstrate the StrMove function. }
  6.  
  7. Const P1 : PCHAR = 'This is a pchar string.';
  8.  
  9.  
  10. Var P2 : Pchar;
  11.        
  12. begin
  13.   P2:=StrAlloc(StrLen(P1)+1);
  14.   StrMove (P2,P1,StrLen(P1)+1); { P2:=P1 }
  15.   Writeln ('P2 = ',P2);
  16. end.
  17.